home *** CD-ROM | disk | FTP | other *** search
- /* remote command server definitions */
-
- #define RCMD_PORT 333 /* default port for RCMD */
-
- #define RCMD_LINE 128 /* maximum line length for cmds */
- #define RCMD_OBUF 128 /* size of one output buffer */
-
- struct rcmd {
- struct tcb *conn; /* TCP connection */
- struct mbuf *input; /* input data buffer */
- struct password pass; /* password data */
- };
- #define NULLRCMD ((struct rcmd *) 0)
-